.hero-section {
    background: linear-gradient(135deg, #071739, #0d2c63, #183d7d);
    position: relative;
    color: #fff;
    padding: 100px 0;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.hero-circle-1 {
    width: 450px;
    height: 450px;
    top: -150px;
    right: -120px;
}

.hero-circle-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -60px;
}

.hero-circle-3 {
    width: 120px;
    height: 120px;
    top: 25%;
    left: 8%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    padding: 12px 22px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.hero-title {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-title span {
    color: #ff4b4b;
}

.hero-text {
    font-size: 18px;
    line-height: 1.9;
    color: #ddd;
    max-width: 600px;
}

.hero-btns .btn {
    padding: 15px 40px;
    font-weight: 600;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.feature-item i {
    color: #ff4b4b;
}

.hero-image {
    position: relative;
}

.hero-main-image {
    max-width: 520px;
    animation: floatImage 5s ease-in-out infinite;
}

.floating-card {
    position: absolute;
    background: #fff;
    color: #222;
    padding: 18px;
    border-radius: 15px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 220px;
}

.floating-card i {
    width: 55px;
    height: 55px;
    background: #ff4b4b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.card-one {
    top: 15%;
    left: -30px;
}

.card-two {
    right: -20px;
    top: 48%;
}

.card-three {
    bottom: 5%;
    left: 40px;
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-text {
        margin: auto;
    }

    .hero-features {
        justify-content: center;
    }

    .card-one,
    .card-two,
    .card-three {
        display: none;
    }
}
